.configurator__sections {
  min-width: 360px;
  height: 100%;
  min-height: 676px;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  z-index: 160;
  background-color: white;
}

.configurator__sections--active {
  opacity: 1;
  display: flex;
  width: 100%;
}

.sections-header {
  display: flex;
  width: 100%;
  padding: var(--size-space-16, 16px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
  box-sizing: border-box;
}

/* DESKTOP HEADER */
.sections-header-desktop {
  display: none;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  box-sizing: border-box;
}

.sections-header-buttons__back-group {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: var(--size-space-4, 4px);
}

.sections-header-buttons__back-icon {
  width: var(--Size-icons-s, 24px);
  height: var(--Size-icons-s, 24px);
  object-fit: contain;
}

.sections-header-buttons__back-button {
  all: unset;
  display: flex;
  align-items: center;
  color: var(--Color-Content-Interactive-Active, #2F6852);
  font-feature-settings: 'liga' off, 'clig' off;
  cursor: pointer;
}

.sections-content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}

.sections-header__title {
  flex: 1 0 0;
  text-align: center;
  margin: 0;
  padding: 0;
}

.sections-header__empty-block {
  display: flex;
  width: 69px;
  height: 24px;
  align-items: center;
  gap: 16px;
}

.sections-header__close-button {
  width: var(--Size-icons-s, 24px);
  height: var(--Size-icons-s, 24px);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.sections-header__close-button:active {
  opacity: 0.6;
}

/* PROGRESS BAR */
.sections-header__progress-container {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding-inline: var(--576-767-page-margin, 16px);
  box-sizing: border-box;
  align-items: flex-start;
  width: 100%;
  padding: 0px 13px;
}

.sections-header__progress-bg {
  width: 100%;
  height: 5px;
  background: #C8D9D0;
  border-radius: 10px;
  overflow: hidden;
}

.sections-header__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00A443, #00e25e);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  position: relative;
}

.sections-header__progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

.section-buttons {
  display: flex;
  width: 100%;
  padding: var(--size-space-16, 16px) var(--360-575-page-margin, 16px) var(--size-space-40, 40px) var(--360-575-page-margin, 16px);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: var(--size-space-24, 24px);
  align-self: stretch;
}

.section--option.selected {
  border: 2px solid #00A443;
}

.section-buttons__next {
  all: unset;
  display: flex;
  width: 155px;
  height: 56px;
  padding-inline: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--size-space-0, 0px);
  text-decoration: none;
  border-radius: var(--border-radius-xl, 100px);
  color: var(--Color-Button-Content-Active-1, #FFFAF6);
  font-feature-settings: 'liga' off, 'clig' off;
  background: var(--Color-Button-Background-Active-1, #2F6852);
}

.section-buttons__back-group {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: var(--size-space-8, 8px);

}

.section-buttons__back-icon {
  width: var(--Size-icons-s, 24px);
  height: var(--Size-icons-s, 24px);
}


.section-buttons__back-button {
  color: var(--Color-Content-Interactive-Active, #2F6852);
}


@media(min-width: 576px) {
  .configurator__sections {
    min-height: 684px;
  }

  .sections-header__progress-container {
    padding: 0px 45px;
  }
}

@media (min-width: 768px) {
  .sections-header__container {
    position: relative;
    padding: var(--size-space-40, 40px) var(--992-1199-page-margin, 82px);
  }

  .sections-header__top {
    padding: var(--size-space-8, 8px);
  }

  .sections-header__top__close-button {
    width: var(--Size-icons-xs, 20px);
    height: var(--Size-icons-xs, 20px);
  }
}

@media(min-width: 992px) {

  .configurator__sections {
    padding: var(--size-space-40, 40px) var(--992-1199-page-margin, 82px);
    box-sizing: border-box;
    position: relative;
    height: calc(524px + 80px);
    min-height: calc(550px + 80px);
    z-index: 99;
    /* Necesario el calc para aplicar el padding*/
  }

  .sections-header-desktop {
    display: flex;
  }

  .sections-header__progress-container {
    margin-top: 32px;
  }

  .section-buttons {
    display: none;
  }
}

@media (min-width: 1200px) {

  .configurator__sections {
    padding: var(--size-space-40, 40px) var(--1200-1399-page-margin, 102px);
    box-sizing: border-box;
    height: calc(388px + 80px);
  }

}

@media (min-width: 1920px) {
  .configurator__sections {
    padding: var(--size-space-40, 40px) var(--14001920-page-margin, 324px);
    box-sizing: border-box;
    height: 300px;
  }

}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}